home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
unjpeg.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
500b
|
34 lines
/*
* $VER: UnJPEG 1.00.00 (24.9.92)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Convert a series of JPEG images to IFF24 files.
*
*/
OPTIONS RESULTS
RequestFile '"Input Basename..."'
IF rc ~= 0 THEN EXIT
input = result
RequestFile '"Output Basename..."'
IF rc ~= 0 THEN EXIT
output = result
DO i = 1 TO 25
num = RIGHT(i,3,'0')
LoadBuffer input||num NoSmooth
IF rc ~= 0 THEN LEAVE
SaveBufferAs ILBM output||num
END
EXIT